home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / RLaB 1.18c / help / frexp < prev    next >
Encoding:
Text File  |  1995-01-17  |  592 b   |  23 lines  |  [TEXT/RLAB]

  1. frexp:
  2.  
  3. Syntax:    frexp ( A )
  4.  
  5. Description:
  6.     
  7.     Frexp returns a list with elements `f' and `e'.
  8.     Frexp splits A into a normalized fraction in the interval:
  9.  
  10.         0.5 <= abs(f) <= 1
  11.  
  12.     which is returned in `f', and a power of 2, which is returned
  13.     in `e'. If A is zero, then both `e' and `f' are zero.
  14.  
  15.     Frexp operates on REAL matrices of any dimension.
  16.  
  17.     The builtin function, frexp, depends upon operating system
  18.     support. Frexp is defined in the ANSI-C standard, and if it is
  19.     not part of the C compilation system used to build RLaB, it
  20.     will not be present.
  21.  
  22. See Also: log, log10, log2, exp, mod
  23.